To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 30 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1
👀 Reading hidden code
begin
using Latexify
using LaTeXStrings
Markdown.html(io::IO, ls::LaTeXString) =
Markdown.html(io, Markdown.LaTeX(
repr(MIME"text/latex"(), ls)
))
Markdown.htmlinline(io::IO, ls::LaTeXString) =
Markdown.htmlinline(io, Markdown.LaTeX(
repr(MIME"text/latex"(), ls)
))
end
83.3 ms
2×2 Matrix{UInt8}:
 0x59  0xb6
 0x94  0xcd
👀 Reading hidden code
A = rand(UInt8, (2,2))
119 ms

[89182148205]

👀 Reading hidden code
latexify(A)
838 ms

A = [89182148205] and

[89182148205]

👀 Reading hidden code
md"""

A = $(latexify(A)) and

$(latexify(A))

"""
16.0 ms